CRPELogOnInfo
This structure contains SQL connection information and is used by the following member functions.
Data Members
- Each data member is set by the corresponding constructor parameter.
- Specify an empty string ("") to use the value already set in the report.
- Specify a non-empty string (for example, "Server A") to override a value in the report.
- All strings are null-terminated.
- The default for each data member is '\0'.
- For Netware SQL, pass the dictionary path name in serverName and the data path name in databaseName.
m_serverName
| _TCHAR
| Specifies the logon name (of length PEP_SERVERNAME_LEN = 128) for the server used to create the report.
|
m_database Name
| _TCHAR
| Specifies the logon name (of length PEP_DATABASENAME_LEN = 128) for the database used to create the report.
|
m_userID
| _TCHAR
| Specifies the user ID (of length PEP_USERID_LEN = 128) necessary to log on to the server.
|
m_password
| _TCHAR
| Specifies the password (of length PEP_PASSWORD_LEN = 128) necessary to log on to the server. Password is undefined when getting information from the report.
|
Constructor CRPELogOnInfo::CRPELogOnInfo
This constructs a CRPELogOnInfo structure object. Call the constructor with no parameters to allow the Class Library to initialize all member variables with default values. Pass parameters to the constructor to assign specific values to each member variable.
Constructor Syntax (Default)
CRPELogOnInfo ();
Constructor Syntax
CRPELogOnInfo (
const _TCHAR *serverName,
const _TCHAR *databaseName,
const _TCHAR *userID,
const _TCHAR *password );